home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
User's Choice Windows CD
/
User's Choice Windows CD (CMS Software)(1993).iso
/
windows5
/
v11n18.zip
/
DAYS.ZIP
/
DAYS.PRG
< prev
next >
Wrap
Text File
|
1992-06-08
|
768b
|
37 lines
SET TALK OFF
CLEAR
STORE CTOD(" / / ") TO beg_date,end_date
@ 3,3 SAY "Enter beginning date:" GET beg_date
@ 5,3 SAY "Enter ending date: " GET end_date
READ
numdays = end_date - beg_date + 1
day_nbr = DOW(beg_date)
USE days
REPLACE ALL ;
seq_nbr WITH RECNO() - day_nbr + IIF(RECNO() < day_nbr,8,1), ;
occurs WITH INT(numdays / 7) + IIF(seq_nbr <= MOD(numdays,7),1,0)
GOTO TOP
?
? "Number of Sundays is " + STR(occurs)
SKIP
? "Number of Mondays is " + STR(occurs)
SKIP
? "Number of Tuesdays is " + STR(occurs)
SKIP
? "Number of Wednesdays is" + STR(occurs)
SKIP
? "Number of Thursdays is " + STR(occurs)
SKIP
? "Number of Fridays is " + STR(occurs)
SKIP
? "Number of Saturdays is " + STR(occurs)
?
USE
RETURN